home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 23 / sysact11.zip / SYSACT.H < prev   
Text File  |  1987-02-02  |  907b  |  31 lines

  1.  
  2. /*
  3.  * structure of SYSACT.LOG captured by
  4.  * SysAct v1.1
  5.  *
  6.  */
  7.  
  8.      struct    sysact
  9.      {
  10.         char      filename[13];   /* command file name */
  11.  
  12.         char      date[10];       /* execution date, yy-mm-dd format */
  13.  
  14.         char      time[10];       /* execution time, hh:mm:ss format */
  15.  
  16.         char      runtime[13];    /* elapsed time, hh:mm:ss.cc format */
  17.  
  18.         char      reads[5];       /* count of DOS reads, hex digits */
  19.  
  20.         char      writes[5];      /* count of DOS writes, hex digits */
  21.  
  22.         char      others[4];      /* count of other DOS calls, hex digits */
  23.  
  24.         char      runs[5];        /* optional number of runs, decimal digits.
  25.                                      this is added by SAFMT when the -s option
  26.                                      is used.  */
  27.  
  28.         char      crlf[2];        /* cr/lf line terminator */
  29.      };
  30.  
  31.